d84e8c754d51b55eb0cd68f394118c2200885fb3,src/test/java/ch/wisv/areafiftylan/UserRestIntegrationTest.java,UserRestIntegrationTest,createProfileAsCurrentUser,#,418
Before Change
contentType(ContentType.JSON).
post("/users/current/profile").
then().
statusCode(HttpStatus.SC_OK).
body("object.gender", is("MALE")).
body("object.address", equalTo("Testaddress")).
body("object.zipcode", equalTo("Testzipcode")).
After Change
contentType(ContentType.JSON).
post("/users/current/profile").
then().
statusCode(HttpStatus.SC_OK).
body("object.birthday", equalTo("2000-01-01")).
body("object.gender", is("MALE")).
body("object.address", equalTo("Testaddress")).
body("object.zipcode", equalTo("Testzipcode")).